DevJourney

NodeJS/geeksforgeekstutorial/introduction to nodejs/myfirst.js

var http = require('http');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end('Hello World!');
}).listen(8080);
View on GitHub